LCCC Student Intranet (from studentportal.luzerne.edu)

The <figure> tag is used to group and display content, such as images, diagrams, or videos, with an optional caption using the <figcaption> tag.

LCCC Student Internet Logo
this image taken off the LCCC student intranet

The code that produced the image and caption above looks like this:

            <figure>
            <img src="https://studentportal.luzerne.edu/includes/images/Intranet_Logo2020.jpg" alt="LCCC Student Internet Logo">
            <figcaption>Caption for the image</figcaption>
            </figure>
        

An Image tag (w3schools/bing)

The <img> tag is used to embed images in an HTML document. It allows you to display images on your web page.

Girl in a jacket

The code that produced the image above looks like this:

        <img src="ihttps://th.bing.com/th/id/R.b4db3e8f20ec699b66cdda1a36b4ae4b?rik=fxQY3yaZP6K1ZQ&pid=ImgRaw&r=0" alt="Girl in a jacket" width="200" height="200">
    

A Button tag (w3schools.com)

The <button> is used in HTML as an interactive element defined by the tag. It serves as a clickable control that can be used to trigger actions or functions within a web page when clicked by a user.

The code used to make the button:

        <button type="button">Click Me!</button>